home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjsbar11.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-04  |  645 b   |  24 lines

  1. // Design Time Java Text Box implementation. (HPP)
  2.  
  3. #ifndef _DTJSBAR11_HPP
  4. #define _DTJSBAR11_HPP
  5.  
  6. #include "dtjcomp11.hpp"
  7.                       
  8. class METAEXPORTCLASSDEF DTJScrollBar11 : public DTJComponent11
  9. {
  10.     public:
  11.         DTJScrollBar11( const MetaObject * pMetaObj );
  12.         virtual ~DTJScrollBar11();
  13.  
  14.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  15.                    ostream& src,
  16.                    MMCodeGenerationParms& pGenParms );
  17. };
  18.  
  19. // needed for mdreader
  20. typedef DTJScrollBar11 DTjava__dot__awt__dot__Scrollbar__dot__11;
  21. typedef WScrollBar java__dot__awt__dot__Scrollbar__dot__11;
  22.  
  23. #endif // _DTJSBAR11_HPP
  24.